home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 2: Applications / Linux Cubed Series 2 - Applications.iso / database / postgres / appgen-0.2-a / appgen-0 / AppGEN / src / lib / makefile < prev   
Encoding:
Makefile  |  1996-07-11  |  347 b   |  14 lines

  1. all:
  2.     gcc -Wall -c encoding.c -o encoding.o
  3.     gcc -Wall -c about.c -o about.o
  4.     gcc -Wall -c html.c -o html.o
  5.     gcc -Wall -c error.c -o error.o
  6.     gcc -Wall -c itoa.c -o itoa.o
  7.     gcc -Wall -c datetime.c -o datetime.o
  8.     ar rcv ../../lib/libappgen.a encoding.o about.o html.o error.o itoa.o datetime.o
  9.     ranlib ../../lib/libappgen.a
  10.  
  11. clean:
  12.     rm *.o
  13.     rm *.a
  14.